a11y: Fix gcc warning
authorBenjamin Otte <otte@redhat.com>
Thu, 10 Nov 2011 15:52:44 +0000 (16:52 +0100)
committerBenjamin Otte <otte@redhat.com>
Thu, 10 Nov 2011 16:10:04 +0000 (17:10 +0100)
gtk/a11y/gtktreeviewaccessible.c

index 2793f9ba17af5740b0eb2e6eff92db6c6dd058aa..70417890cf23816d9223cbdb20493c9e12babe80 100644 (file)
@@ -238,7 +238,7 @@ gtk_tree_view_accessible_initialize (AtkObject *obj,
   accessible->n_children_deleted = 0;
 
   accessible->cell_info_by_index = g_hash_table_new_full (g_int_hash,
-      g_int_equal, NULL, cell_info_free);
+      g_int_equal, NULL, (GDestroyNotify) cell_info_free);
 
   widget = GTK_WIDGET (data);
   tree_view = GTK_TREE_VIEW (widget);